home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / ddrawcp.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  877 b   |  27 lines

  1. //---------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //---------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #include <vcl.h>
  7. #pragma hdrstop
  8. USEFILE("readme.txt");
  9. USEFORM("DDCP.cpp", Form1);
  10. USERES("DDrawCP.res");
  11. //---------------------------------------------------------------------------
  12. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  13. {
  14.     try
  15.     {
  16.         Application->Initialize();
  17.         Application->CreateForm(__classid(TForm1), &Form1);
  18.         Application->Run();
  19.     }
  20.     catch (Exception &exception)
  21.     {
  22.         Application->ShowException(&exception);
  23.     }
  24.     return 0;
  25. }
  26. //---------------------------------------------------------------------------
  27.